home *** CD-ROM | disk | FTP | other *** search
/ Pro One: Netcracker Netscape Navigator / ProOne: Netcracker Netscape Navigator.iso / pc / nc / nct06030.geo / 00054.ls < prev    next >
Encoding:
Text File  |  1997-03-19  |  1.2 KB  |  64 lines

  1. on startMovie
  2.   Set_CDcounter(6)
  3.   initLesson()
  4.   CheckForTagWd()
  5. end
  6.  
  7. on HideLastStep
  8. end
  9.  
  10. on TheinitCursor
  11.   initCursorCastNum()
  12.   initCursorList(1)
  13.   set CursorCastNum to getCursor(2)
  14.   cursor([CursorCastNum, CursorCastNum + 1])
  15. end
  16.  
  17. on checkScreenStatus
  18.   CheckRollOver()
  19.   CheckSnakeStatus()
  20.   go(the frame)
  21. end
  22.  
  23. on BlinkNext
  24.   if (the timer > getTimer()) and not soundBusy(2) then
  25.     startTimer()
  26.     if the name of cast the castNum of sprite get_NEXTSprite() = "NEXT" then
  27.       set the castNum of sprite get_NEXTSprite() to the number of cast "NEXT_E"
  28.     else
  29.       set the castNum of sprite get_NEXTSprite() to the number of cast "NEXT"
  30.     end if
  31.   end if
  32. end
  33.  
  34. on GoNext
  35.   if not get_Disabled() then
  36.     sound stop 2
  37.     if Get_NEXT() = 6 then
  38.       GoNextMovie()
  39.     else
  40.       go("t" & Get_NEXT())
  41.     end if
  42.     Set_NEXT(Get_NEXT() + 1)
  43.   end if
  44. end
  45.  
  46. on playTheTSound theTSnd
  47.   PlaySound("NCT06030.s0" & theTSnd)
  48. end
  49.  
  50. on stopMovie
  51.   sound stop 1
  52.   unLoad()
  53.   setEmptyCursor()
  54. end
  55.  
  56. on GoNextMovie
  57.   PlaySound("GOSOUND.SO1")
  58.   SaveHilite()
  59.   Add_CDcounter(1)
  60.   set cdNum to Get_CDcounter()
  61.   set movieName to item cdNum of Get_CurrentSnakeScreens()
  62.   go("INIT" & Get_ScreenSubject(), movieName & ".GEO")
  63. end
  64.